Base64 URL
Base64 encode, decode, escape and unescape for URL applications.
Examples
Encode data to a Base64-URL string.
assert_eq!;
Decode a Base64-URL string to data.
assert_eq!;
Escape a Base64 string to a Base64-URL string. The conversion is not concerning with Base64 decoding. You need to make sure the input string is a correct Base64 string by yourself.
assert_eq!;
Unescape a Base64-URL string to a Base64-URL string. The conversion is not concerning with Base64 decoding. You need to make sure the input string is a correct Base64-URL string by yourself.
assert_eq!;
Besides, you can also use other encode_*
, decode_*
, escape_*
, unescape_*
associated functions to deal with more specific cases. For example,
let hash = &;
let mut url = String from;
assert_eq!;
assert_eq!;
No Std
Disable the default features to compile this crate without std.
[]
= "*"
= false
Crates.io
https://crates.io/crates/base64-url